net/http.http2StreamError.Code (field)

16 uses

	net/http (current package)
		h2_bundle.go#L1403: 	Code     http2ErrCode
		h2_bundle.go#L1413: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1418: 		return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause)
		h2_bundle.go#L1420: 	return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code)
		h2_bundle.go#L5964: 		Code:     http2ErrCodeInternal,
		h2_bundle.go#L7293: 		code = http2ErrCode(e.Code)
		h2_bundle.go#L8025: 		if se.Code == http2ErrCodeProtocol && se.Cause == http2errFromPeer {
		h2_bundle.go#L8029: 		return se.Code == http2ErrCodeRefusedStream
		h2_bundle.go#L8972: 					cc.writeStreamReset(cs.ID, se.Code, false, err)
		h2_bundle.go#L9609: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9638: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9966: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9974: 			Code:     http2ErrCodeProtocol,
		h2_bundle.go#L9983: 				Code:     http2ErrCodeProtocol,
		h2_bundle.go#L10230: 				Code:     http2ErrCodeFlowControl,
		h2_bundle.go#L10705: 	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)